home *** CD-ROM | disk | FTP | other *** search
/ DOpus Plus / DOpus Plus.iso / Tutorial / C Guide / Simple_Module2 / HiddenCommand.c < prev    next >
C/C++ Source or Header  |  1998-08-24  |  533b  |  21 lines

  1. /*******************************************************************
  2.  
  3.    HiddenCommand.c
  4.     
  5.     It's a joke... :-), all what's to do is already done in the
  6.     ModuleEntry code (to set the FUNCF_PRIVATE flag). Since we
  7.     have done until now the first step, we may be a little bit lazy.
  8.     So we do only wait a few seconds before we return... 
  9.  
  10. *********************************************************************/
  11.  
  12. #include "includes/Project.h"
  13.  
  14.  
  15. void HiddenCommand( STRPTR args, IPCData *ipc, IPCData *main_ipc )
  16. {
  17.       Delay( 300 ); 
  18.     
  19. }
  20.  
  21.